home *** CD-ROM | disk | FTP | other *** search
/ Windows Expert / Windows Expert.iso / windownt / makfon.zip / MAKEFILE < prev    next >
Text File  |  1992-10-20  |  760b  |  35 lines

  1. # Nmake macros for building Windows 32-Bit apps
  2.  
  3. !include <ntwin32.mak>
  4.  
  5. all: tester.fon
  6.  
  7. # Update the dynamic link library
  8.  
  9.  
  10.  
  11. tester.rbj: tester.rc sys08x12.fnt
  12.     rc -r -fo tester.res tester.rc
  13.     cvtres -$(CPU) tester.res -o tester.rbj
  14.  
  15.  
  16. codestub.obj: codestub.c
  17.     $(cc) $(cdebug) $(cflags) $(cvars) codestub.c
  18.  
  19.  
  20. tester.lib: codestub.obj tester.def
  21.     $(cvtobj) $(cvtdebug) codestub.obj
  22.     lib -machine:$(CPU)     \
  23.     -def:tester.def         \
  24.     codestub.obj            \
  25.     -out:tester.lib
  26.  
  27.  
  28. tester.fon: tester.rbj tester.lib
  29.     $(link)              \
  30.     -base:0x1C000000     \
  31.     -entry:DLLEntryPoint$(DLLENTRY) \
  32.     -dll                 \
  33.     -out:tester.fon      \
  34.     tester.exp codestub.obj tester.rbj
  35.